home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000084_news@newsmaster….columbia.edu _Tue Jan 5 16:30:17 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA17199
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 5 Jan 1999 16:30:16 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA03493
  7.     for kermit.misc@watsun; Tue, 5 Jan 1999 16:30:15 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Trouble with C-Kermit and TRANSMIT
  12. Date: 5 Jan 1999 21:30:12 GMT
  13. Organization: Columbia University
  14. Lines: 33
  15. Message-ID: <76u094$bi3$1@apakabar.cc.columbia.edu>
  16. References: <369280b5.0@amhnt2.amherst.edu>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9714
  19.  
  20. In article <369280b5.0@amhnt2.amherst.edu>,  <jwmanly+news@amherst.edu> wrote:
  21. : Hi there.  I've been trying to use the C-KERMIT TRANSMIT command on our
  22. : VAX/VMS system, and have been having some trouble.  The problem seems to be
  23. : that the TRANSMIT command only sends the first line of the file if the other
  24. : side of the connection is set in NOECHO mode, and in particular is not
  25. : sending back carriage returns and line feeds following each line that
  26. : C-Kermit transmits.
  27. Right, that's exactly what it does unless you tell it otherwise.
  28.  
  29. : So for example, if I use C-Kermit to connect to an interactive system that
  30. : does normal remote echoing of characters, everything works fine.  If I
  31. : TRANSMIT a multi-line file, each successive line is sent to the remote
  32. : system.  However, if the remote system is NOT set up to echo what is typed,
  33. : and then I do a TRANSMIT of a multi-line file, I find that only the first
  34. : line of the file is actually sent, though the TRANSMIT command does complete
  35. : and return me to the C-KERMIT> prompt after a moment.
  36. : It seems to me I ran into this problem before when I was trying to use
  37. : C-KERMIT to script some NNTP dialog using the TRANSMIT function, and I don't
  38. : think I ever found a workaround or even managed to figure out exactly what
  39. : wasn't working.
  40. : Does anybody know a way to fix this?  What parameters (handshake, etc) might
  41. : effect the line-by-line operation of the TRANSMIT command like this?
  42. Try telling it to:
  43.  
  44.   set transmit prompt 0
  45.  
  46. This means, "don't wait for anything before sending the next line".
  47.  
  48. - Frank